CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 语法分析 ll(1)

搜索资源列表

  1. yf.rar

    1下载:
  2. 构造实验一所给文法(应考虑改造)的FIRST集合和FOLLOW集合;构造LL(1)分析表;构造预测分析的总控程序;利用分析表、分析栈和总控程序对源程序进行自上而下的语法分输出整个语法分析过程中栈的变化过程及分析结果,如符合语法规则输出“正确”,否则输出“错误”。 ,Experiment to construct a grammar (should consider the transformation) of FIRST and FOLLOW set of the collection co
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:3352
    • 提供者:DP
  1. Grammer_analysis_program

    0下载:
  2. 北邮 编译原理与技术 课程实验 语法分析程序 用C++实现,包含递归下降分析,LL(1),LR(1),YACC的所有源代码及测试输入文件-Compile didactical building principle and technology experiment grammar analysis in c++ program implementation, include recursively to analysis, LL (1), LR (1), all of the source co
  3. 所属分类:Compiler program

    • 发布日期:2017-05-08
    • 文件大小:1625741
    • 提供者:停留
  1. 20064350132

    1下载:
  2. 通过设计,编制,调试一个语法及语义分析程序,加深对语法及语义分析原理的理解。 IF 〈布尔表达式〉 THEN 〈赋值语句〉 ELSE 〈赋值语句〉 其中 (1)、可以选择递归下降法、LL(1)、算符优先分析法、LR法完成以上任务,中间代码选用四元式。 (2)、 写出符合分析方法要求的文法,给出分析方法的思想,完成分析程序设计。 (3)、 编制好分析程序后,设计若干用例,上机测试并通过所设计的分析程序。 目 录 一.系统需求分析 二.概念模型设计 三.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:488522
    • 提供者:aden
  1. bycx

    0下载:
  2. C++编写的编译程序,包括词法分析,语法分析(LL(1)),语义分析,输出分析过程、二元式、符号表和四元式。-Written in C++ compilers, including lexical analysis, syntax analysis (LL (1)), semantic analysis, the output of the process, binary type, symbol table and four-element scheme.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:4561
    • 提供者:xiaohe
  1. dd

    0下载:
  2. IF-ELSE条件语句的翻译程序设计(简单优先法、输出三地址表示) 要求完成的主要任务: (包括课程设计工作量及其技术要求,以及说明书撰写等具体要求) (1) [bianyiqi.rar] - 词法分析,语法分析,以及中间代码生成布尔表达式转换为逆波兰式 [3.rar] - 编译原理课程设计(LL(1)分析),功能强大,使用,希望大家多多下载,多指出不足的地方 -IF-ELSE conditional statements translation program design
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:52086
    • 提供者:ddd
  1. compiler

    0下载:
  2. 完成一个完整的编译程序,语法分析大部分采用LL(1)文法实现,算术表达式用算符优先至底向上实现。-Completion of a complete compiler, syntax analysis of the majority of the use of LL (1) grammar realization of arithmetic expressions by bottom-up operator to achieve the priorities.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-04
    • 文件大小:15229
    • 提供者:熊永红
  1. bool

    0下载:
  2. 用LL(1)法对布尔表达式的语法分析,中间代码用四元式表示-By LL (1) on Boolean expression syntax analysis, intermediate code used quaternion type that
  3. 所属分类:Compiler program

    • 发布日期:2017-04-08
    • 文件大小:1033
    • 提供者:6272082
  1. yufayuyi

    0下载:
  2. 基本实现基于LL(1)法的语法及语义分析程序设计-Based on the basic realization of LL (1) the law of grammar and semantic analysis of program design
  3. 所属分类:Compiler program

    • 发布日期:2017-04-17
    • 文件大小:6759
    • 提供者:Holy
  1. ll1

    0下载:
  2. LL(1)分析实验,根据语法规则逐一分析词法分析时得到的属性字
  3. 所属分类:Compiler program

    • 发布日期:2017-04-26
    • 文件大小:28255
    • 提供者:于翔
  1. shiyanbaogaoyangli

    0下载:
  2. 这个报告记录了编译原理的大作业的过程和各个阶段的设计,包括词法分 析、语法分析、语义分析和汇编代码生成四个阶段,在语法分析时我采用了两种 语法分析,即一种自上而下的语法分析方法——LL(1)分析法,另一种是自底向 上的语法分析方法——SLR(1)分析法,这样可以了解到这两种不同的基本分析方 法,这样在语义分析阶段也要分这两种方法处理语义动作,并且要个产生式分别 编写语义动作。-The report recorded a big operation principle comp
  3. 所属分类:Compiler program

    • 发布日期:2017-05-03
    • 文件大小:1296747
    • 提供者:
  1. 15883

    0下载:
  2. (1)、本代码实现语法分析的LL(1)分析法。 (2)、输入一个文法的所有产生式,由程序自动生成它的LL(1)预测分析表。 (3)、对于给定的输入串,能正确识别该串是否为给定文法的句型。 -(1), the parsing code of LL (1) analysis. (2), all of grammar enter a production, it is automatically generated by the procedures of the LL (1) Forec
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:22422
    • 提供者:whom
  1. dowhilee

    0下载:
  2. 1.1写出符合给定的语法do-while语句, 此语句符合LL(1)的文法,分析方法 的文法及属性文法。 1.2完成do-while语句的中间代码三地址表示的描述。 1.3写出do-while语句语法分析方法的思想,完成语法分析和语义分析程序设计。 1.4编制好分析程序后,设计若干用例,上机测试并通过所设计的分析程序。-1.1 write in line with the syntax of a given do-while statement, the sta
  3. 所属分类:Compiler program

    • 发布日期:2017-04-05
    • 文件大小:145874
    • 提供者:李伟霞
  1. 200906241019311925

    0下载:
  2. LL(1)文法自动生成语法分析程序的设计-LL (1) grammar syntax analysis program automatically generates the design
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:191025
    • 提供者:chenpeng
  1. cifa

    0下载:
  2. 包括一个LR(1)的语法分析程序和一个LL(1)的语法分析程序的例子-Includes a LR (1) syntax analysis procedure and an LL (1) Examples of the syntax analysis program
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:4107
    • 提供者:yy
  1. yufa

    0下载:
  2. 语法分析器,对已给pascal语言文法,构造LL(1)分析表,编制语法分析程序,要求将错误信息输出到语法错误文件中,并输出分析句子的过程-Parser that have been to the pascal language grammar, structure LL (1) analysis table, the preparation of parsing procedure that requires the output to the error message syntax erro
  3. 所属分类:Compiler program

    • 发布日期:2017-04-10
    • 文件大小:1951353
    • 提供者:陈美娟
  1. yufafenxi

    0下载:
  2. 采用LL(1)方法,用C语言在C++开发环境下编写的语法分析程序,简单易懂,已经过调试-Using LL (1) method, using C language development environment C++ parser written in a simple easy to understand, has been commissioning
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2409
    • 提供者:王志刚
  1. Predictor

    0下载:
  2. LL(1)预测分析程序,语法是定的,不过可以稍加修改环境vs2005 语言 C#-LL (1) predictive analysis, grammar is fixed, but can be modified to environmental vs2005 Language C#
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:18033
    • 提供者:高飞
  1. LL11

    0下载:
  2. LL(1)语法分析器,构造分析表,输入一个语句,然后进行语法分析!-LL (1) lexical analyzer
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:4286
    • 提供者:肖琴琴
  1. main

    0下载:
  2. 编译原理实验之ll(1)语法分析,主要完成ll(1)分析表的构造和输入字符串的正确性检验-Compiler theory experiment ll (1) syntax analysis was completed for ll (1) of the table structure and test the correctness of input string
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:2596
    • 提供者:toby
  1. yufa

    0下载:
  2. 简单的实现编译原理LL(1)语法分析,给定文法和分析表 -a program a baout LL(1)analsy
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:343424
    • 提供者:张建民
« 1 2 3 4 5 6 78 9 »
搜珍网 www.dssz.com